home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 21
/
Cream of the Crop 21 (Terry Blount) (October 1996).iso
/
bbs
/
pad311.zip
/
STRIPCHA.MH
< prev
next >
Wrap
Text File
|
1996-08-21
|
519b
|
21 lines
#ifndef __STRIPCHA_MH
#define __STRIPCHA_MH
// stripChar removes all occourances of a particular character from a string.
// The original string is modified.
void stripChar (Ref string: theString, char: stripChar) {
int: sidx, tidx;
tidx := 1;
for (sidx := 1; sidx <= strlen (theString); sidx := sidx + 1) {
if (theString [sidx] <> stripChar) {
theString [tidx] := theString [sidx];
tidx := tidx + 1;
};
};
theString := substr (theString,1,tidx-1);
}
#endif